home *** CD-ROM | disk | FTP | other *** search
-
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel Corporation',
- 'Copyright': u'Copyright (c) 2003-2004 Corel Corporation All rights reserved.',
- 'Description': 'Factory default preset for BrushStrokes effect',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_BrushStrokes():
- return {
- 'Opacity': 50,
- 'Color': (80, 80, 80),
- 'Length': 10,
- 'Angle': 102,
- 'Density': 25,
- 'Bristles': 160,
- 'Softness': 20,
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0,
- 'RandomSeed': None
- },
- 'Width': 5
- }
-
- def Do(Environment):
- App.Do( Environment, 'BrushStrokes', Preset_BrushStrokes())
-